home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_400 / 418_04 / raswin.def < prev    next >
Encoding:
Text File  |  1994-01-24  |  948 b   |  30 lines

  1. NAME         RasWin       ; application's module name
  2.  
  3. DESCRIPTION  'RasWin Molecular Graphics Renderer'
  4.  
  5. EXETYPE      WINDOWS       ; required for all Windows applications
  6.  
  7. STUB         'WINSTUB.EXE' ; Generates error message if application
  8.                ; is run without Windows
  9.  
  10. ;CODE can be moved in memory and discarded/reloaded
  11. CODE  PRELOAD MOVEABLE DISCARDABLE
  12.  
  13. ;DATA must be MULTIPLE if program can be invoked more than once
  14. DATA  PRELOAD MOVEABLE MULTIPLE
  15.  
  16.  
  17. HEAPSIZE     1024
  18. STACKSIZE    8192       ; recommended minimum for Windows applications
  19.  
  20.  
  21. ; All functions that will be called by any Windows routine
  22. ; MUST be exported.
  23.  
  24. EXPORTS
  25.     MainCallB     @1   ; name of window processing function
  26.         CmndCallB     @2   ; name of command processing function 
  27.     AboutCallB    @3   ; name of "About" processing function
  28.     InfoCallB     @4   ; name of "Info" processing function
  29.         DDECallB      @5   ; name of DDE server function
  30.